home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000217-20000824 / 000300_news@columbia.edu _Mon May 15 10:09:36 2000.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from watsun.cc.columbia.edu (watsun.cc.columbia.edu [128.59.39.2])
  3.     by monire.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id KAA07967
  4.     for <kermit.misc@cpunix.cc.columbia.edu>; Mon, 15 May 2000 10:09:36 -0400 (EDT)
  5. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  6.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id KAA19177
  7.     for <kermit.misc@watsun.cc.columbia.edu>; Mon, 15 May 2000 10:07:45 -0400 (EDT)
  8. Received: (from news@localhost)
  9.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id JAA26155
  10.     for kermit.misc@watsun.cc.columbia.edu; Mon, 15 May 2000 09:47:23 -0400 (EDT)
  11. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  12. From: fdc@columbia.edu (Frank da Cruz)
  13. Subject: Re: A missing warning when we type Server command (as opposed connect.)
  14. Date: 15 May 2000 13:47:20 GMT
  15. Organization: Columbia University
  16. Message-ID: <8fov58$ph8$1@newsmaster.cc.columbia.edu>
  17. To: kermit.misc@columbia.edu
  18.  
  19. In article <391F4E35.4AE7E2AF@yk.rim.or.jp>,
  20. Ishikawa  <ishikawa@yk.rim.or.jp> wrote:
  21. : Thank you for the help when I had the RTS/CTS flow problem on Solaris.
  22. : One minor quirk came to my attention.
  23. : On solaris, after my fix for hardware flow/control by
  24. : defining POSIX-something macro
  25. : (sorry I am writing this from memory right now).
  26. : and for that matter before I applied the fix for this problem,
  27. : when I type
  28. :     connect
  29. : a big letter warning that I should set
  30. :     set carrier-watch off
  31. : is printed.
  32. : (hardware flow control,  8bit bytes, hardware parity even (8E1),
  33. : 115200 bps).
  34. : However, recently I found out if I type "server"
  35. : to let it handle file transfer from the kermit on the other end of
  36. : the connection, no such big-letter warning is printed.
  37. : (I have only tested with the fixed version.)
  38. : Some people might want to see such warning printed
  39. : when "server" command is typed.
  40. : Just a thought.
  41. I think the rationale is that there might not be a connection yet.
  42. Since the server does not not make the first move (i.e. initiate any
  43. i/o), there is no need for the connection to be open when the server
  44. starts.  For example, before you go home from work, you can do something
  45. like this:
  46.  
  47.   set line /dev/cua
  48.   set speed 57600
  49.   set flow rts/cts
  50.   server
  51.  
  52. and then later you can call it from home.  Of course, you can also take
  53. a more formal approach:
  54.  
  55.   set line /dev/cua
  56.   set speed 57600
  57.   set flow rts/cts
  58.   answer                ; Wait for a call to come in
  59.   if success server     ; Only then, enter server mode
  60.  
  61. - Frank